home *** CD-ROM | disk | FTP | other *** search
/ MaxiMac 2000 December / MaxiMac 109.iso / KitWeb / Wanadoo / Acrobat Reader 4.0 / Plug-Ins / AcroForm / JavaScripts / AFStrFRA.js < prev   
Encoding:
Text File  |  1999-03-09  |  4.5 KB  |  152 lines  |  [TEXT/????]

  1. /*
  2.     ==========================================================================
  3.     Module: AFStrFRA.js
  4.     ==========================================================================
  5.     JavaScript language dependent strings.
  6.     ==========================================================================
  7.     The Software, including this file, is subject to the End User License
  8.     Agreement.
  9.     Copyright (c) 1998, Adobe Systems Incorporated, All Rights Reserved.
  10.     ==========================================================================
  11. */
  12.  
  13. /* ==== Strings ==== */
  14. /* All of our user strings are defined here. Use Shift-JIS encoding for
  15. ** double byte platforms. These strings need to be translated for each language. */
  16.  
  17. /* Each string is presented twice: first, in Macintosh platform encoding, 
  18. ** and then in Windows encoding: */
  19. if (app.language == "FRA") {
  20.     if (app.platform == "MAC") {
  21.         IDS_LANGUAGE         = "FRA";
  22.         IDS_GREATER_THAN    = "Valeur incorrecte : elle doit être supérieure ou égale à %s.";
  23.         IDS_GT_AND_LT        = "Valeur incorrecte : elle doit être supérieure ou égale à %s et inférieure ou égale à %s.";
  24.         IDS_LESS_THAN        = "Valeur incorrecte : elle doit être inférieure ou égale à %s.";
  25.         IDS_INVALID_MONTH    = "** Valeur incorrecte **";
  26.         IDS_INVALID_VALUE    = "La valeur saisie ne correspond pas au format du champ.";
  27.         IDS_AM = "am";
  28.         IDS_PM = "pm";
  29.  
  30.         /* This string contains month info in the following format:
  31.         ** month name or abbreviation (left bracket) month number (right bracket)
  32.         ** Note that the first string with the given number will be returned by
  33.         ** AFGetMonthString (look in AForm.js)
  34.         ** Also note that the months and abbreviations should be in order of most
  35.         ** to least definitive in case an abbreviation matches part of another
  36.         ** month or abbreviation */
  37.         IDS_MONTH_INFO    =    "Janvier[1]" +
  38.                             "Février[2]" +
  39.                             "Mars[3]" +
  40.                             "Avril[4]" +
  41.                             "Mai[5]" +
  42.                             "Juin[6]" +
  43.                             "Juillet[7]" +
  44.                             "Août[8]" +
  45.                             "Septembre[9]" +
  46.                             "Octobre[10]" +
  47.                             "Novembre[11]" +
  48.                             "Décembre[12]" +
  49.                             "Sept[9]" +
  50.                             "Jan[1]" +
  51.                             "Fév[2]" +
  52.                             "Mar[3]" +
  53.                             "Avr[4]" +
  54.                             "Jun[6]" +
  55.                             "Jul[7]" +
  56.                             "Aut[8]" +
  57.                             "Sep[9]" +
  58.                             "Oct[10]" +
  59.                             "Nov[11]" +
  60.                             "Déc[12]" +
  61.                             "January[1]" +
  62.                             "February[2]" +
  63.                             "March[3]" +
  64.                             "April[4]" +
  65.                             "May[5]" +
  66.                             "June[6]" +
  67.                             "July[7]" +
  68.                             "August[8]" +
  69.                             "September[9]" +
  70.                             "October[10]" +
  71.                             "November[11]" +
  72.                             "December[12]" +
  73.                             "Sept[9]" +
  74.                             "Jan[1]" +
  75.                             "Feb[2]" +
  76.                             "Mar[3]" +
  77.                             "Apr[4]" +
  78.                             "Jun[6]" +
  79.                             "Jul[7]" +
  80.                             "Aug[8]" +
  81.                             "Sep[9]" +
  82.                             "Oct[10]" +
  83.                             "Nov[11]" +
  84.                             "Dec[12]";
  85.     } else {
  86.         IDS_LANGUAGE         = "FRA";
  87.         IDS_GREATER_THAN    = "Valeur incorrecte : elle doit Ítre supÈrieure ou Ègale ‡ %s.";
  88.         IDS_GT_AND_LT        = "Valeur incorrecte : elle doit Ítre supÈrieure ou Ègale ‡ %s et infÈrieure ou Ègale ‡ %s.";
  89.         IDS_LESS_THAN        = "Valeur incorrecte : elle doit Ítre infÈrieure ou Ègale ‡ %s.";
  90.         IDS_INVALID_MONTH    = "** Valeur incorrecte **";
  91.         IDS_INVALID_VALUE    = "La valeur saisie ne correspond pas au format du champ.";
  92.         IDS_AM = "am";
  93.         IDS_PM = "pm";
  94.  
  95.         /* This string contains month info in the following format:
  96.         ** month name or abbreviation (left bracket) month number (right bracket)
  97.         ** Note that the first string with the given number will be returned by
  98.         ** AFGetMonthString (look in AForm.js)
  99.         ** Also note that the months and abbreviations should be in order of most
  100.         ** to least definitive in case an abbreviation matches part of another
  101.         ** month or abbreviation */
  102.         IDS_MONTH_INFO    =    "Janvier[1]" +
  103.                             "FÈvrier[2]" +
  104.                             "Mars[3]" +
  105.                             "Avril[4]" +
  106.                             "Mai[5]" +
  107.                             "Juin[6]" +
  108.                             "Juillet[7]" +
  109.                             "Ao˚t[8]" +
  110.                             "Septembre[9]" +
  111.                             "Octobre[10]" +
  112.                             "Novembre[11]" +
  113.                             "DÈcembre[12]" +
  114.                             "Sept[9]" +
  115.                             "Jan[1]" +
  116.                             "FÈv[2]" +
  117.                             "Mar[3]" +
  118.                             "Avr[4]" +
  119.                             "Jun[6]" +
  120.                             "Jul[7]" +
  121.                             "Aut[8]" +
  122.                             "Sep[9]" +
  123.                             "Oct[10]" +
  124.                             "Nov[11]" +
  125.                             "DÈc[12]" +
  126.                             "January[1]" +
  127.                             "February[2]" +
  128.                             "March[3]" +
  129.                             "April[4]" +
  130.                             "May[5]" +
  131.                             "June[6]" +
  132.                             "July[7]" +
  133.                             "August[8]" +
  134.                             "September[9]" +
  135.                             "October[10]" +
  136.                             "November[11]" +
  137.                             "December[12]" +
  138.                             "Sept[9]" +
  139.                             "Jan[1]" +
  140.                             "Feb[2]" +
  141.                             "Mar[3]" +
  142.                             "Apr[4]" +
  143.                             "Jun[6]" +
  144.                             "Jul[7]" +
  145.                             "Aug[8]" +
  146.                             "Sep[9]" +
  147.                             "Oct[10]" +
  148.                             "Nov[11]" +
  149.                             "Dec[12]";
  150.     }                        
  151.  }
  152.